body #infoPara {
    height: 320px;
    display: flex;
    flex-direction: column;
    margin: 40px 150px;
}

#infoPara #heading {
    flex-direction: column;
    text-align: center;
    margin-bottom: 0.5rem;
}

#infoPara #heading #smallH {
    font-size: 1rem;
    color: var(--txt-color2);
}

#infoPara #heading #bigH {
    margin-top: -0.4rem;
    font-size: 2.5rem;
    color: var(--txt-color1);
}

body #infoPara #text {
    display: flex;
    flex-direction: column;
    text-align: justify;
    font-family: var(--t-font1);
    color: var(--txt-color3);
}

body #infoPara #text .texts p {
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1rem;
}

@media (max-width: 1100px) {
    #infoPara {
        height: fit-content !important;
    }
    #infoPara #heading #smallH {
        font-size: 0.8rem;
    }
    #infoPara #heading #bigH {
        font-size: 2rem;
    }
    body #infoPara #text .texts p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    #infoPara {
        height: fit-content !important;
        margin: 40px 90px !important;
    }
    #infoPara #heading #smallH {
        font-size: 0.7rem;
    }
    #infoPara #heading #bigH {
        font-size: 1.7rem;
    }
    body #infoPara #text .texts p {
        font-size: 0.7rem;
    }
}

@media (max-width: 700px) {
    #infoPara {
        height: fit-content !important;
        margin: 40px 15px !important;
    }
    #infoPara #heading #smallH {
        font-size: 0.7rem;
    }
    #infoPara #heading #bigH {
        font-size: 1.7rem;
    }
    body #infoPara #text .texts p {
        font-size: 0.7rem;
    }
}